type go/types.typeParamsById

5 uses

	go/types (current package)
		unify.go#L155: 	tparams := make(typeParamsById, len(u.handles))
		unify.go#L178: type typeParamsById []*TypeParam
		unify.go#L180: func (s typeParamsById) Len() int           { return len(s) }
		unify.go#L181: func (s typeParamsById) Less(i, j int) bool { return s[i].id < s[j].id }
		unify.go#L182: func (s typeParamsById) Swap(i, j int)      { s[i], s[j] = s[j], s[i] }